LUA REGISTER DLL

You can register single dbpro dlls and custom plugins using this command (as many as you like).
Indicate the name of the dll/plugin as parameter. The DBPro dlls can be found in the plugins folder of the compiler folder of your DBP installation. Use the filename without the '.dll' extension as dll name.

The Syntax in the lua script to call the dll commands is: DBPro.Call("LoadObject", "myobject.x", 1). Also see the help on that command.
If the dll/plugin could not be found, 1 is returned. If everything went well, 0 is returned.
Note: The dll must conform to the DBPro standards of a plugin, that is it has to have a stringtable that specifies the commands to be used.
Also note that you must include the dll/plugin within your program by using at least one command of the plugin in your dbpro program code, or by including the dll in the program folder.

SYNTAX
Return Integer=LUA REGISTER DLL(dll_name as String)

RELATED INFO
LUA command menu
Index

EXAMPLE
Showcase-example 1
Showcase-example 2